home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / dflt19 / helpbox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-24  |  409 b   |  26 lines

  1. /* --------- helpbox.h ----------- */
  2.  
  3. #ifndef HELPBOX_H
  4. #define HELPBOX_H
  5.  
  6. /* --------- linked list of help text collections -------- */
  7. struct helps {
  8.     char *hname;
  9.     char *comment;
  10.     long hptr;
  11.     int bit;
  12.     int hheight;
  13.     int hwidth;
  14.     int nexthlp;
  15.     int prevhlp;
  16.     void *hwnd;
  17.     char *PrevName;
  18.     char *NextName;
  19. #ifdef FIXHELP
  20.     struct helps *NextHelp;
  21. #endif
  22. };
  23.  
  24. #endif
  25.  
  26.